home *** CD-ROM | disk | FTP | other *** search
- global gUI
-
- on startMovie
- global gPrinterB, gBannerartB, gLeftB, gSpeakerB, gHomeB, gHelpB, gRightB
- gUI = VOID
- if the optionDown then
- helpWindow = window("MEMMON")
- helpWindow.fileName = the pathname & "MEMMON"
- open(helpWindow)
- end if
- gPrinterB = 114
- gBannerartB = 115
- gLeftB = 116
- gSpeakerB = 117
- gHomeB = 118
- gHelpB = 119
- gRightB = 120
- startApplication()
- preloadMember(member(2))
- end
-
- on stopMovie
- global gOldDepth
- killActorList()
- set the colorDepth to gOldDepth
- end
-
- on checkRollovers
- puppetSprite(30, 1)
- set the loc of sprite 30 to 10000
- spr = 0
- repeat with i = 2 to 9
- if rollover(i) then
- spr = i
- exit repeat
- end if
- end repeat
- if not spr then
- puppetSprite(30, 0)
- return
- end if
- name = "roll," & member(the member of sprite spr).name
- set the memberNum of sprite 30 to member(name).memberNum
- set the castLibNum of sprite 30 to member(name).castLibNum
- if the locH of sprite spr < 400 then
- set the loc of sprite 30 to the loc of sprite spr + point(the width of sprite spr / 2, -30)
- else
- set the loc of sprite 30 to the loc of sprite spr + point(the width of sprite spr / 2, -30)
- end if
- end
-
- on changeCursors
- handSpriteList = []
- repeat with x = 1 to 37
- if the scoreColor of sprite x = 5 then
- add(handSpriteList, x)
- end if
- end repeat
- initHandCursor("pointer", handSpriteList)
- end
-
- on clearLocalHandCursors
- handSpriteList = []
- repeat with x = 1 to 37
- if the scoreColor of sprite x = 5 then
- add(handSpriteList, x)
- end if
- end repeat
- clearHandCursor(handSpriteList)
- end
-